home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / string / strncmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  200 b   |  12 lines

  1. #include <string.h>
  2.  
  3. int strncmp(const char *s1,const char *s2,size_t n)
  4. /*  gehoert das so? */
  5. {
  6.     while(--n&&*s1==*s2){
  7.         if(!*s1) return(0);
  8.         s1++;s2++;
  9.     }
  10.     return(*s1-*s2);
  11. }
  12.